Sha256: 07f798af6897f323fdca81ffa89e47d3bc54664a3db0dc114e6fa837143b2215
Contents?: true
Size: 1.79 KB
Versions: 2
Compression:
Stored size: 1.79 KB
Contents
const path = require("path") const MiniCssExtractPlugin = require("mini-css-extract-plugin") const ManifestPlugin = require("webpack-manifest-plugin") module.exports = { entry: "./frontend/javascript/index.js", devtool: "source-map", // Set some or all of these to true if you want more verbose logging: stats: { modules: false, builtAt: false, timings: false, children: false }, output: { path: path.resolve(__dirname, "output", "_bridgetown", "static", "js"), filename: "all.[contenthash].js" }, resolve: { extensions: [".js", ".jsx"] }, plugins: [ new MiniCssExtractPlugin({ filename: "../css/all.[contenthash].css", }), new ManifestPlugin({ fileName: path.resolve(__dirname, ".bridgetown-webpack", "manifest.json") }) ], module: { rules: [ { test: /\.(js|jsx)/, use: { loader: "babel-loader", options: { presets: [ "@babel/preset-env" ], plugins: [ "@babel/plugin-proposal-class-properties", [ "@babel/plugin-transform-runtime", { "helpers": false } ] ] } } }, { test: /\.(sc|c)ss$/, use: [ MiniCssExtractPlugin.loader, "css-loader", { loader: "sass-loader", options: { sassOptions: { includePaths: [path.resolve(__dirname, "src/_includes")] } } } ] }, { test: /\.woff2?$|\.ttf$|\.eot$|\.svg$/, loader: "file-loader", options: { outputPath: "../fonts", publicPath: "../fonts" }, } ] } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bridgetown-core-0.11.1 | lib/site_template/webpack.config.js |
bridgetown-core-0.11.0 | lib/site_template/webpack.config.js |