1f1f777d06
Embedded files significantly increase the binary size for linking. Add a tag that allows disabling embedding the build npm code. Change-Id: I9d1fd7376d1fa035965c33d259faaa6c4770dfe1
27 lines
475 B
Go
27 lines
475 B
Go
// Copyright (C) 2022 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
//go:build !noembed
|
|
// +build !noembed
|
|
|
|
package storagenodeweb
|
|
|
|
import (
|
|
"embed"
|
|
"fmt"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed dist/*
|
|
var assets embed.FS
|
|
|
|
// Assets contains either the built storagenode from web/storagenode/dist directory
|
|
// or it is empty.
|
|
var Assets = func() fs.FS {
|
|
dist, err := fs.Sub(assets, "dist")
|
|
if err != nil {
|
|
panic(fmt.Errorf("invalid embedding: %w", err))
|
|
}
|
|
return dist
|
|
}()
|