UNPKG

@teamthunderfoot/translate-on-scroll

Version:
19 lines (18 loc) 383 B
const path = require('path'); module.exports = { mode:'production', entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'main.js', }, module:{ rules:[ { test: /\.js$/, exclude: /(node_modules)/, use:'babel-loader' }, ] } }