working on extracting CSS in a separate file

This commit is contained in:
lotte
2019-04-16 16:09:38 +02:00
committed by Art Lowel
parent 139edd2df1
commit 3a7929369a
2 changed files with 22 additions and 4 deletions

View File

@@ -107,6 +107,7 @@
"jsonschema": "1.2.2", "jsonschema": "1.2.2",
"jwt-decode": "^2.2.0", "jwt-decode": "^2.2.0",
"methods": "1.1.2", "methods": "1.1.2",
"mini-css-extract-plugin": "^0.6.0",
"moment": "^2.22.1", "moment": "^2.22.1",
"morgan": "^1.9.1", "morgan": "^1.9.1",
"ng-mocks": "^6.2.1", "ng-mocks": "^6.2.1",
@@ -125,6 +126,7 @@
"text-mask-core": "5.0.1", "text-mask-core": "5.0.1",
"ts-loader": "^5.2.1", "ts-loader": "^5.2.1",
"ts-md5": "^1.2.4", "ts-md5": "^1.2.4",
"url-loader": "^1.1.2",
"uuid": "^3.2.1", "uuid": "^3.2.1",
"webfontloader": "1.6.28", "webfontloader": "1.6.28",
"webpack-cli": "^3.1.0", "webpack-cli": "^3.1.0",

View File

@@ -4,6 +4,8 @@ const {
root, root,
join join
} = require('./helpers'); } = require('./helpers');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const devMode = process.env.NODE_ENV !== 'production';
module.exports = { module.exports = {
mode: 'development', mode: 'development',
@@ -61,10 +63,18 @@ module.exports = {
options: { options: {
sourceMap: true sourceMap: true
} }
}, { },
loader: 'raw-loader', {
loader: MiniCssExtractPlugin.loader,
options: { options: {
sourceMap: true hmr: process.env.NODE_ENV === 'development',
},
},
{
loader: 'css-loader',
options: {
sourceMap: true,
url: false
} }
}, },
{ {
@@ -107,7 +117,13 @@ module.exports = {
}, { }, {
from: join(__dirname, '..', 'resources', 'i18n'), from: join(__dirname, '..', 'resources', 'i18n'),
to: join('assets', 'i18n') to: join('assets', 'i18n')
}]) }]),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: devMode ? '[name].css' : '[name].[hash].css',
chunkFilename: devMode ? '[id].css' : '[id].[hash].css',
}),
] ]
}; };