-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
81 lines (80 loc) · 2 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import path from 'path';
import webpack from 'webpack';
export default {
cache: true,
debug: true,
devtool: '#eval-source-map',
hotComponents: true,
entry: {
app: [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/dev-server',
'./devapp/index.js'
],
styles: [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/dev-server',
'./devapp/styles.js'
]
},
output: {
path: path.join(__dirname, 'dist'),
publicPath: './',
filename: '[name].js',
chunkFilename: '[chunkhash].js',
sourceMapFilename: '[name].map'
},
resolve: {
modulesDirectories: ['node_modules'],
root: [path.join(__dirname, 'src')],
fallback: [path.join(__dirname, 'node_modules')]
},
resolveLoader: {
modulesDirectories: ['node_modules'],
fallback: [path.join(__dirname, 'node_modules')]
},
module: {
noParse: [
/languages\/autoit\.js/
],
loaders: [{
test: /\.(scss|css)$/,
loaders: [
'style',
'css',
'autoprefixer?browsers=last 3 versions',
'sass?outputStyle=expanded&includePaths[]=' + path.resolve(__dirname, 'node_modules')
]
}, {
test: /\.js$/,
loaders: [
'babel?cacheDirectory'
],
exclude: /(node_modules)/
}, {
test: /\.json$/,
loaders: ['json']
}, {
test: /\.(png|svg)$/,
loaders: ['file?name=assets/images/[name].[ext]']
}, {
test: /\.(mp3)$/,
loaders: ['file?name=assets/sounds/[name].[ext]']
}, {
test: /\.(ttf|eot|svg|woff|woff2)$/,
loaders: ['file?name=assets/fonts/[name].[ext]']
}]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('development')
}
}),
new webpack.ResolverPlugin([
new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin('package.json', ['main'])
], ['context']),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
};