Qortal UI - Main Code Repository A User Interface for the Qortal Blockchain Project. Truly decentralized web hosting, application hosting, communications, data storage, and full infrastructure for the future global decentralized digital world.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
715 B

3 years ago
const path = require('path')
const uiCore = require('./core/ui-core.js')
3 years ago
const generateBuildConfig = uiCore('generate_build_config')
const watchInlines = uiCore('watch_inline')
const config = require('./config/config.js')
const pluginsController = require('./plugins/default-plugins.js')
3 years ago
const watchDefaultPlugins = pluginsController('watch')
let srcConfig = {
...config.build,
options: {
...config.build.options,
outputDir: path.join(__dirname, '/builtWWW'),
sassOutputDir: path.join(__dirname, '/builtWWW/styles.bundle.css'),
}
}
const { inlineConfigs } = generateBuildConfig(srcConfig)
module.exports = () => {
watchInlines(inlineConfigs)
watchDefaultPlugins()
}