Fix: add required build.publicFolder and build.outputFolder to Tina config
Some checks failed
Deploy to Easypanel / deploy (push) Has been cancelled

This commit is contained in:
Kunthawat Greethong
2026-04-27 19:58:06 +07:00
parent 5548f45091
commit c6c75f5b0d
4 changed files with 13 additions and 8 deletions

View File

@@ -3,11 +3,9 @@ import { schema } from './schema';
export default defineConfig({
schema,
ui: {
navigation: {
'content/posts': { label: 'Posts' },
'content/pages': { label: 'Pages' },
},
build: {
publicFolder: 'public',
outputFolder: 'admin',
},
media: {
tina: {
@@ -15,4 +13,10 @@ export default defineConfig({
mediaRoot: 'uploads',
},
},
ui: {
navigation: {
'content/posts': { label: 'Posts' },
'content/pages': { label: 'Pages' },
},
},
});