首页 文章

使用webpack时解析scss文件中的字体路径

提问于
浏览
1

我正在使用webpack和我的asp.net mvc核心项目 . 我能够捆绑js文件 . 但我无法解析我的字体路径 .

我有这个我是scss文件:

$font-path: '../fonts' !global; 

/*fonts*/
/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('#{$font-path}/roboto-v15-latin-300.eot'); /* IE9 Compat Modes */
    src: local('Roboto Light'), local('Roboto-Light'), url('#{$font-path}/roboto-v15-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('#{$font-path}/roboto-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('#{$font-path}/roboto-v15-latin-300.woff') format('woff'), /* Modern Browsers */
    url('#{$font-path}/roboto-v15-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('#{$font-path}/roboto-v15-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

文件结构:

└── Project
    ├── assets
    │ └── scripts
    │   └── main.ts
    │ └── scss
    │   └── fonts
    │       └── roboto-condensed-v13-latin-700.eot
    │   └── main.scss
    │
    └── webpack.config.js

var path = require('path');
var extractTextPlugin = require("extract-text-webpack-plugin");
var cleanWebpackPlugin = require('clean-webpack-plugin');
var webpack = require('webpack');

module.exports = {
    entry: {
        'role/role': './assets/scripts/role/roleVM.ts',
        main: './assets/scripts/main.ts',
        vendor: ["bootstrap", "popper.js", "jquery"]
    },
    output: {
        filename: 'js/[name].js',
        path: path.resolve(__dirname, 'wwwroot/dist/')
    },
    module: {
        rules: [
            {
                test: /\.tsx?$/,
                loader: 'ts-loader',
                exclude: /node_modules/,
            },
            {
                test: /\.scss$/,
                use: extractTextPlugin.extract({
                    use: [{
                        loader: "css-loader", options: {
                            sourceMap: true
                        }
                    }, {
                        loader: "resolve-url-loader"
                    },
                    {
                        loader: "sass-loader", options: {
                            sourceMap: true
                        },

                    }],
                    fallback: 'style-loader'
                }),
                exclude: /node_modules/
            },
            {
                test: /.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
                use: [{
                    loader: 'file-loader',
                    options: {
                        name: '[name].[ext]',
                        outputPath: 'fonts/'
                    }
                }]
            }
        ]
    },
    plugins: [
        new cleanWebpackPlugin(['dist'], {
            root: path.resolve(__dirname, 'wwwroot'),
            verbose: true,
            dry: false
        }),
        new webpack.optimize.CommonsChunkPlugin({ name: 'vendor', filename: 'js/vendor.js' }),
        new extractTextPlugin("./css/main.css"),
        new webpack.ProvidePlugin({
            $: 'jquery',
            jQuery: 'jquery',
            'window.jQuery': 'jquery',
            'Popper': 'popper.js'
        })
    ],
    resolve: {
        extensions: [".tsx", ".ts", ".js", '.scss'],
        modules: [
            path.resolve('./'),
            path.resolve('./node_modules'),
        ]
    }
};

当我构建webpack时,我收到一个错误:

错误在./node_modules/css-loader?{"sourceMap":true}! . / node_modules / resolve-url-carter . :/ node_modules / skip-love / lib / media.js?{“sourceMap”:true} !./ assets / scss / main.scss找不到模块:错误:无法解析'C:\ project \ src \ project \ assets中的'../fonts/roboto-condensed-v13-latin-700.eot' \ scss'@ ./node_modules/css-loader?{"sourceMap":true}! . / node_modules / resolve-url-center• . / node_modules / users-love / lib / download.js?{“sourceMap”:true } ./ ./ assets / scss / main.scss 6:215433-215491

1 回答

  • 0

    您可以尝试添加以下两个选项 .

    • 在您的webpack配置中添加entry.devtool选项 .

    • ExtractTextPlugin有一个可以解决此问题的publicPath选项 .

    module.exports = {
    entry: {
        'role/role': './assets/scripts/role/roleVM.ts',
        main: './assets/scripts/main.ts',
        vendor: ["bootstrap", "popper.js", "jquery"]
    },
    output: {
        filename: 'js/[name].js',
        path: path.resolve(__dirname, 'wwwroot/dist/')
    },
    devtool:'source-map', //..1. add devtool option to source-map
    module: {
        rules: [
            {
                test: /\.tsx?$/,
                loader: 'ts-loader',
                exclude: /node_modules/,
            },
            {
                test: /\.scss$/,
                use: extractTextPlugin.extract({
                    publicPath:'',
                    //2. add public path to your font folder in the build directory
                    use: [{
                        loader: "css-loader", options: {
                            sourceMap: true
                        }
                    }, {
                        loader: "resolve-url-loader"
                    },
                        {
                            loader: "sass-loader", options: {
                            sourceMap: true
                        },
    
                        }],
                    fallback: 'style-loader'
                }),
                exclude: /node_modules/
            },
            {
                test: /.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
                use: [{
                    loader: 'file-loader',
                    options: {
                        name: '[name].[ext]',
                        outputPath: 'fonts/'
                    }
                }]
            }
        ]
    },
    plugins: [
        new cleanWebpackPlugin(['dist'], {
            root: path.resolve(__dirname, 'wwwroot'),
            verbose: true,
            dry: false
        }),
        new webpack.optimize.CommonsChunkPlugin({ name: 'vendor', filename: 'js/vendor.js' }),
        new extractTextPlugin("./css/main.css"),
        new webpack.ProvidePlugin({
            $: 'jquery',
            jQuery: 'jquery',
            'window.jQuery': 'jquery',
            'Popper': 'popper.js'
        })
    ],
    resolve: {
        extensions: [".tsx", ".ts", ".js", '.scss'],
        modules: [
            path.resolve('./'),
            path.resolve('./node_modules'),
        ]
    }
    

    };

相关问题