-
Notifications
You must be signed in to change notification settings - Fork 260
Open
Labels
questionFurther information is requestedFurther information is requested
Description
I used following structure for an admin dashboard UI app with a Golang API Source code
.
├── @globals
│ ├── containers.css
│ ├── reset.css
│ └── theme.css
│
├── @components
│ ├── button.css
│ ├── card.css
│ │
│ └── dashboard.css
│
├── index.html
├── site.yaml
│
├── Dockerfile
├── img
│ └── icon
│
├── bootstrap.js
├── controllers
│ ├── auth.js
│ ├── router.js
│ └── dashboard.js
│
├── model
│ ├── api.js
│ ├── auth.js
│ └── index.js
│
└── view
├── layout
│ ├── app.dhtml
│ ├── details.dhtml
│ ├── head.dhtml
│ └── main.dhtml
└── screens
├── login.dhtml
├── signup.dhtml
└── dashboard.dhtml
I've checked the new sample apps full/spa and tweaked but always get bootstrap.js not found (with //bootstrap.js)
My app was worked perfectly with RCv1.0.0 but with the v2.0.0 the whole projects is unable to run.
Even with following Dockerfile, I've got "'nuedoc' not found in module" error.
FROM oven/bun:1
WORKDIR /app
RUN bun install --global nuekit@1.0.0-RC.4
COPY . .
EXPOSE 8081
CMD ["sh", "-c", "nue build -p && nue serve -p"]ui-1 | 1 | })
ui-1 | 2 | {
ui-1 | ^
ui-1 | SyntaxError: Export named 'nuedoc' not found in module '/root/.bun/install/global/node_modules/nuemark/index.js'.
ui-1 | at requestImportModule (2:1)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested