2023-03-14 07:16:12 +00:00
|
|
|
const path = require('path')
|
|
|
|
|
|
|
|
module.exports = {
|
2023-03-16 07:54:45 +00:00
|
|
|
// assets
|
|
|
|
assets: path.resolve('assets'),
|
|
|
|
|
2023-03-14 07:16:12 +00:00
|
|
|
// 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'),
|
|
|
|
}
|