homepage/config/paths.js

13 lines
284 B
JavaScript
Raw Normal View History

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