Created
April 8, 2019 13:17
-
-
Save corneliouzbett/98cc7338617a801456de5b17ade3e76f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path'); | |
const webpack = require('webpack'); | |
const CleanWebpackPlugin = require('clean-webpack-plugin'); | |
module.exports = { | |
mode: 'development', | |
entry: { | |
// Set the single-spa config as the project entry point | |
'single-spa.config': 'single-spa.config.js', | |
}, | |
output: { | |
publicPath: '/dist/', | |
filename: '[name].js', | |
path: path.resolve(__dirname, 'dist'), | |
}, | |
module: { | |
rules: [ | |
{ | |
// Webpack style loader added so we can use materialize | |
test: /\.css$/, | |
use: ['style-loader', 'css-loader'] | |
}, | |
{ | |
test: /\.js$/, | |
exclude: [path.resolve(__dirname, 'node_modules')], | |
loader: 'babel-loader', | |
}, | |
{ | |
// This plugin will allow us to use html templates when we get to the angularJS app | |
test: /\.html$/, | |
exclude: /node_modules/, | |
loader: 'html-loader', | |
}, | |
], | |
}, | |
node: { | |
fs: 'empty' | |
}, | |
resolve: { | |
modules: [ | |
__dirname, | |
'node_modules', | |
], | |
}, | |
plugins: [ | |
// A webpack plugin to remove/clean the build folder(s) before building | |
new CleanWebpackPlugin(['dist']), | |
], | |
devtool: 'source-map', | |
externals: [], | |
devServer: { | |
historyApiFallback: true | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment