diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-15 21:48:10 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-15 21:48:10 +0900 |
| commit | 7b2b7d1456b500c8dd406a6e51c8f95d0f9405d3 (patch) | |
| tree | e64df23b3f49b01a9cd8dff0ac7b24ded940dfad /webpack.config.ts | |
| parent | 8.40.0 (diff) | |
| download | sharkey-7b2b7d1456b500c8dd406a6e51c8f95d0f9405d3.tar.gz sharkey-7b2b7d1456b500c8dd406a6e51c8f95d0f9405d3.tar.bz2 sharkey-7b2b7d1456b500c8dd406a6e51c8f95d0f9405d3.zip | |
Resolve #2066
Diffstat (limited to 'webpack.config.ts')
| -rw-r--r-- | webpack.config.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/webpack.config.ts b/webpack.config.ts index a50d6c40cc..325923084e 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -7,7 +7,6 @@ import * as webpack from 'webpack'; import chalk from 'chalk'; import rndstr from 'rndstr'; const { VueLoaderPlugin } = require('vue-loader'); -const jsonImporter = require('node-sass-json-importer'); const minifyHtml = require('html-minifier').minify; const WebpackOnBuildPlugin = require('on-build-webpack'); //const HardSourceWebpackPlugin = require('hard-source-webpack-plugin'); @@ -184,22 +183,6 @@ module.exports = { }] }] }, { - test: /\.scss$/, - exclude: /node_modules/, - use: [{ - loader: 'style-loader' - }, { - loader: 'css-loader', - options: { - minimize: true - } - }, { - loader: 'sass-loader', - options: { - importer: jsonImporter(), - } - }] - }, { test: /\.css$/, use: [{ loader: 'vue-style-loader' |