We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf4c74 commit 6b0dd1cCopy full SHA for 6b0dd1c
skeleton/config/app.js
@@ -4,10 +4,13 @@ export const debug = true;
4
// url base for location view, database
5
export const base_url = location.origin;
6
7
+// public directory
8
+export const public_dir = `${base_url}/skeleton/public`;
9
+
10
// location assets
11
export const assets_location= {
- js: '/public/assets/js/',
- css: '/public/assets/css/'
12
+ js: `${public_dir}/assets/js/`,
13
+ css: `${public_dir}/assets/css/`
14
};
15
16
/**
0 commit comments