@primate/core 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/build/targets/web.js +1 -1
package/package.json
CHANGED
package/src/build/targets/web.js
CHANGED
|
@@ -81,7 +81,7 @@ export default async app => {
|
|
|
81
81
|
async asset(pathname) {
|
|
82
82
|
const root_asset = buildroot.join(\`client/\${pathname}\`);
|
|
83
83
|
if (await await root_asset.isFile) {
|
|
84
|
-
return serve_asset(
|
|
84
|
+
return serve_asset(root_asset);
|
|
85
85
|
}
|
|
86
86
|
const static_asset = buildroot.join(\`client/static/\${pathname}\`);
|
|
87
87
|
if (await static_asset.isFile) {
|