-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.js
67 lines (62 loc) · 1.75 KB
/
next.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
const path = require('path')
const glob = require('glob')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const webpack = require('webpack')
const isDev = process.env.NODE_ENV === 'development'
require('dotenv').config({
path: isDev ? '.env' : '.env.production'
});
module.exports = {
distDir: '../.build',
webpack: (config) => {
config.module.rules.push(
{
test: /\.(css|sass|scss)$/,
use: ExtractTextPlugin.extract([
{
loader: 'css-loader',
options: {
sourceMap: isDev,
minimize: true,
},
},
{
loader: 'sass-loader',
options: {
includePaths: ['styles', 'node_modules']
.map(d => path.join(__dirname, d))
.map(g => glob.sync(g))
.reduce((a, c) => a.concat(c), []),
},
},
]),
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&mimetype=application/font-woff&outputPath=static/',
},
{
test: /\.(svg|ttf|eot)$/i,
loader: 'file-loader?outputPath=static/',
},
{
test: /\.(png|jpe?g|gif)$/i,
loaders: [
'file-loader?outputPath=static/',
'image-webpack-loader?bypassOnDebug&optimizationLevel=7&interlaced=false',
],
},
);
const env = Object.keys(process.env).reduce((acc, curr) => {
acc[`process.env.${curr}`] = JSON.stringify(process.env[curr]);
return acc;
}, {});
config.plugins.push(
new ExtractTextPlugin({
filename: path.join('static', 'app.min.css'),
}),
new webpack.DefinePlugin(env)
);
return config;
},
};