forked from AgileVentures/WebsiteOne-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
31 lines (30 loc) · 774 Bytes
/
webpack.config.js
File metadata and controls
31 lines (30 loc) · 774 Bytes
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
const path = require('path')
const Dotenv = require('dotenv-webpack')
const HtmlWebPackPlugin = require('html-webpack-plugin')
require('mini-css-extract-plugin')
const htmlPlugin = new HtmlWebPackPlugin({
template: './src/index.html',
filename: './index.html'
})
module.exports = {
devServer: { historyApiFallback: true },
output: { publicPath: '/' },
module: {
rules: [
{
test: /\.(js|jsx)$/,
include: path.resolve(__dirname, 'src'),
use: ['babel-loader']
},
{
test: /\.(sc|sa|c)ss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
use: 'url-loader?limit=100000'
}
]
},
plugins: [htmlPlugin, new Dotenv()]
}