mirror of
https://github.com/optim-enterprises-bv/OptimCloud-gw-ui.git
synced 2025-10-30 09:52:20 +00:00
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
// Source files
|
|
src: path.resolve(__dirname, '../src'),
|
|
|
|
// Production build files
|
|
build: path.resolve(__dirname, '../build'),
|
|
|
|
// Static files that get copied to build folder
|
|
public: path.resolve(__dirname, '../public'),
|
|
};
|