15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
// assets
|
|
assets: path.resolve('assets'),
|
|
|
|
// Source files
|
|
src: path.resolve(__dirname, '../src'),
|
|
|
|
// Production build files
|
|
build: path.resolve(__dirname, '../dist'),
|
|
|
|
// Static files that get copied to build folder
|
|
public: path.resolve(__dirname, '../public'),
|
|
}
|