Last active
May 9, 2017 21:28
-
-
Save jy95/16b0f03d46b087c6f2640c8e9178914f to your computer and use it in GitHub Desktop.
WORKING webpack.config.js : need to fix plugins
This file contains hidden or 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 webpack = require('webpack'); | |
| const path = require('path'); | |
| const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
| const postcssPlugins = [ | |
| require('postcss-cssnext')(), | |
| require('postcss-modules-values') | |
| ]; | |
| const scssLoader = [ | |
| { loader: 'style-loader' }, | |
| { loader: 'css-loader' }, | |
| { loader: 'sass-loader' } | |
| ]; | |
| const postcssLoader = [ | |
| { loader: 'style-loader' }, | |
| { loader: 'css-loader', options: { modules: true } }, | |
| { loader: 'postcss-loader', options: { plugins: () => [...postcssPlugins] } } | |
| ]; | |
| // you'll need to npm install the following: [raw-loader, html-minifier-loader, json-loader, css-loader,style-loader, url-loader, file-loader ] | |
| // in your index.html you should have two script tags, one for app.js(or bundle.js) and vendor.js | |
| // no need for babelify with webpack. just, npm install --save-dev babel-cli babel-preset-es2016 | |
| // in .babelrc file change the preset of 2015 to ["es2016"] | |
| module.exports = { | |
| entry: { | |
| app: './app.js', | |
| // if any on these are just for css remove them from here and require(with absolute path) them from app.js | |
| vendor: [ | |
| 'babel-polyfill', | |
| 'admin-lte', | |
| 'admin-lte/bootstrap/js/bootstrap.min.js', | |
| 'lobibox/dist/js/notifications.min.js', | |
| 'admin-lte/plugins/fastclick/fastclick.js', | |
| 'moment', | |
| 'moment/locale/fr.js', | |
| 'moment-timezone', | |
| 'eonasdan-bootstrap-datetimepicker', | |
| 'bootstrap-table', | |
| 'bootstrap-table/dist/locale/bootstrap-table-fr-BE.min.js', | |
| 'parsleyjs', | |
| 'parsleyjs/dist/i18n/fr.js', | |
| 'bootstrap-daterangepicker', | |
| 'socket.io-client', | |
| 'jquery-confirm', | |
| 'push.js', | |
| 'lodash', | |
| 'bootstrap-table/dist/extensions/export/bootstrap-table-export.min.js', | |
| 'tableexport.jquery.plugin' | |
| ] | |
| }, | |
| //devtool: 'eval', // for test in the browser | |
| output: { | |
| filename: '[name].js', | |
| path: path.resolve(__dirname, 'dist')//, | |
| //pathinfo: true | |
| }, | |
| module: { | |
| rules: [{ | |
| test: /\.js$/, | |
| use: 'babel-loader', | |
| exclude: /node_modules/ | |
| }, { | |
| test: /\.html$/, | |
| use: ['raw-loader', 'html-minifier-loader'], | |
| exclude: /node_modules/ | |
| }, { | |
| test: /\.json$/, | |
| use: 'json-loader', | |
| exclude: /node_modules/ | |
| }, { | |
| test: /\.(scss|sass)$/, | |
| loader: ExtractTextPlugin.extract(scssLoader)//, | |
| //include: [__dirname] | |
| },{ | |
| test: /\.css$/, | |
| use: ExtractTextPlugin.extract({ | |
| fallback: "style-loader", | |
| use: "css-loader" | |
| }) | |
| //include: [__dirname] | |
| }, { | |
| test: /\.(jpg|png|gif)$/, | |
| use: 'file-loader' | |
| }, { | |
| test: /\.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/, | |
| loader: 'file-loader?name=fonts/[name].[ext]' | |
| }], | |
| }, | |
| plugins: [ | |
| new ExtractTextPlugin({ | |
| filename: 'app.bundle.css', | |
| allChunks: true | |
| }), | |
| new webpack.ProvidePlugin({ | |
| $: "jquery", | |
| jQuery: "jquery" | |
| }) | |
| ], | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment