Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 299 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 299 Bytes

Flickerbox Build

Basic webpack.config.js

module.exports = require('@flickerbox/build/webpack.config')
	.output
		.path(__dirname)
		.filename('js/[name].js')
		.end()
	.entry('css')
		.add('./src/sass/main.scss')
		.end()
	.entry('main')
		.add('./src/js/main.js')
		.end()
	.toConfig();